home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue44 / comcorn / ByteArray / Client.dpr next >
Encoding:
Text File  |  1999-03-01  |  234 b   |  15 lines

  1. program Client;
  2.  
  3. uses
  4.   Forms,
  5.   CliMain in 'CliMain.pas' {MainForm},
  6.   Server_TLB in 'Server_TLB.pas';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TMainForm, MainForm);
  13.   Application.Run;
  14. end.
  15.